home *** CD-ROM | disk | FTP | other *** search
- ; CONTROL SPLINE VIEWER
- ; Cyber Control motion control demonstration
- ; by Dann Parks
- ; Additional routines by Andrew Reese
- ; Copyright 1989 Antic Publishing, Inc.
- ; This program lets you view control splines created by manipulating
- ; the objects in the CONTROL.3D2 file.
- ;------------------------------------------------------------------------
- ; NOTE: THE WATCH BUFFERS MUST BE ON!
- ;------------------------------------------------------------------------
- ; First, set up the general parameters
- backgnd yes,no:; Set the background.
- view s:draft:; Set the view mode and rendering.
- ambient 7:; Turn up the light.
- ;------------------------------------------------------------------------
- @EXIST
- input "[1] Clear splines [2] Show prev splines",oldnew
- if oldnew=1 then clrbgnd:; Clears old splines from backgnd.
- if oldnew<1 then bell:goto EXIST
- if oldnew>2 then bell:goto EXIST
- ;------------------------------------------------------------------------
- @FRAMES
- input "How many frames? [Enter 10-100]", num
- if num<10 then bell:goto FRAMES:; Adjust these numbers if you want
- if num>100 then bell:goto FRAMES:; to change frame limits.
- ;------------------------------------------------------------------------
- @INFO
- input "[1]Merge CONTROL.3D2 [2]Use existing pts",mergefil
- if mergefil=1 then new:merge3d "A:\CONTROL.3D2":;Edit to change pathname.
- if mergefil<1 then bell:goto INFO
- if mergefil>2 then bell:goto INFO
- ;------------------------------------------------------------------------
- @FITVIEW
- input "Fit view to screen? [1]Yes [2]No",fit
- if fit=1 then gosub SETCAM2:; Send the program to SETCAM2
- ; subroutine to set up camera 2.
- if fit=2 then cam 1 0,90,0:zoom 300:perspec 0:; Or use (and set) camera 1
- if mergefil=2 then goto DOIT:; Skip the marker creator.
- if fit<1 then bell:goto FITVIEW
- if fit>2 then bell:goto FITVIEW
- ;------------------------------------------------------------------------
- ; Create the marker cube and shrink it to a useable size
- cube mkr,7
- group d:clrgrp:select mkr
- for shrink=1 to 6
- scale 50
- next shrink
- ;------------------------------------------------------------------------
- @DOIT
- watch on:; Turn on watch buffers.
- group a:clrgrp:select box1:grpcent box1x,box1y,box1z:; Find the centers
- group a:clrgrp:select box2:grpcent box2x,box2y,box2z:; of the five
- group a:clrgrp:select box3:grpcent box3x,box3y,box3z:; spline control
- group a:clrgrp:select box4:grpcent box4x,box4y,box4z:; point boxes.
- group a:clrgrp:select box5:grpcent box5x,box5y,box5z
- ;------------------------------------------------------------------------
- defpt 2,box1x,box1y,box1z:; Use the centers of the five control
- defpt 2,box2x,box2y,box2z:; point boxes to define five spline
- defpt 2,box3x,box3y,box3z:; control points.
- defpt 2,box4x,box4y,box4z
- defpt 2,box5x,box5y,box5z
- defspline 2,num,b:; Define a spline with "num" frames.
- ;------------------------------------------------------------------------
- ; Main Loop
- group b:; Select group B.
- for move=0 to (num-1):; Set the loop counter to num-1.
- view s:; Reset view mode.
- dec=(move+1)%10:; Set 10th frame counter.
- clrgrp:select mkr:; Clear group B and select mkr.
- moveto s2x(move),s2y(move),s2z(move):;Put mkr at spline location.
- if move=0 then allgrp:; Select all objects at the start.
- if dec=0 then bell:view w:; Bell/wire marker every 10th frame.
- superview:vtobgnd
- next move
- ;------------------------------------------------------------------------
- end:; If finished, end the program.
- ;------------------------------------------------------------------------
- @SETCAM2
- group a:allgrp:grpcent x,y,z:; Determine group center.
- bounds minx,miny,minz,maxx,maxy,maxz:;Determine group bounds.
- z1=int(130000/abs(maxy-miny)):; Derive test value for y-axis
- z2=int(130000/abs(maxx-minx)):; Derive test value for x-axis
- cam 2 x,y,15000,x,y,z,90:; Set camera 2 position.
- if z1<z2 then zoom z1:; Test which value is lower and set
- if z1>z2 then zoom z2:; zoom to the lower of the two.
- perspec 0
- return
-
-